home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 August / chip-cd_2003_08.zip / 08 / Przeglad programow P2P / Shareaza 1.9 / Shareaza1890.exe / Schemas / folder.xsd < prev    next >
Extensible Markup Language  |  2003-02-16  |  681b  |  24 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <schema targetNamespace="http://www.shareaza.com/schemas/folder.xsd" xmlns="http://www.w3.org/2001/XMLSchema">
  4.     
  5.     <element name="folders">
  6.         <complexType>
  7.             <element name="folder" type="folderType" minOccurs="1" maxOccurs="unbounded"/>
  8.         </complexType>
  9.     </element>     
  10.     <complexType name="folderType">
  11.         <all>
  12.             <attribute name="title" type="string"/>
  13.             <attribute name="description" type="string"/>
  14.             <attribute name="collector" type="string"/>
  15.             <attribute name="comments">
  16.                 <simpleType base="string">
  17.                     <maxInclusive value="1024"/>
  18.                 </simpleType>
  19.             </attribute>
  20.         </all>
  21.     </complexType>
  22.     
  23. </schema>
  24.